home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 3863 / 3863.xpi / samples / Macros / SI-Get-Exchange-Rate.js < prev    next >
Text File  |  2010-01-25  |  349b  |  17 lines

  1. ∩╗┐var ret
  2. var s
  3.  
  4. ret = iimDisplay ("Get Exchange Rate Demo Macro")
  5. ret = iimPlay("Wsh-Extract-Rate")
  6.  
  7. /* Check for error */
  8. if (ret = 1) {
  9.      s = "One US$ costs " + iimGetLastExtract(1) + " EURO or " + iimGetLastExtract(2) + " British Pounds (GBP)"
  10.  
  11. }else
  12. {
  13.     s = "The following error occurred: "+iimGetLastError();
  14. };
  15. alert (s);
  16.  
  17.